-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·50 lines (45 loc) · 1.4 KB
/
setup.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from pkg_resources import parse_requirements
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('requirements/prod.txt') as req:
requirements = [str(r) for r in parse_requirements(req)]
setup(
name='pycgbuilder',
version='0.1.0',
description="A Qt5 based GUI for making mapping files",
long_description=readme,
author="Peter C Kroon",
author_email='[email protected]',
url='https://github.com/pckroon/pycgbuilder',
packages=[
'pycgbuilder',
],
package_dir={'pycgbuilder':
'pycgbuilder'},
entry_points={
"gui_scripts": [
"pycgbuilder = pycgbuilder.__main__:main"
],
},
include_package_data=True,
install_requires=requirements,
license="Apache Software License",
zip_safe=False,
keywords='pycgbuilder',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
],
)