-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (30 loc) · 977 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (30 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python3
import setuptools
import os
with open('README.md', 'r') as f:
longDescription = f.read()
with open(os.path.join(os.path.dirname(__file__), 'src', 'bdc', '__init__.py')) as f:
exec(f.read())
setuptools.setup(
name=__name__,
version=__version__,
scripts=['src/bdc/bdc', 'src/bdc/bdc-gui'] ,
author=__author__,
author_email='adamjenkins1701@gmail.com',
description='bootable install media creator',
long_description=longDescription,
long_description_content_type='text/markdown',
url=__url__,
packages=['bdc'],
include_package_data=True,
package_dir={'': 'src'},
platforms="Linux",
install_requires=['PyQt5==5.11.3'],
python_requires='~=3.5',
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
],
)