forked from muscbridge/PyDesigner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 976 Bytes
/
setup.py
File metadata and controls
43 lines (41 loc) · 976 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
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
from designer.info import (
__packagename__,
__version__,
__author__,
__copyright__,
__credits__,
__execdir__,
__maintainer__,
__email__,
__url__,
__license__,
__description__,
REQUIRES,
PYTHON_REQUIRES,
CLASSIFIERS
)
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name=__packagename__,
packages=find_packages(),
version=__version__,
author=__author__,
author_email=__email__,
maintainer=__maintainer__,
description=__description__,
long_description=long_description,
long_description_content_type='text/x-rst',
url=__url__,
license=__license__,
include_package_data=True,
classifiers=CLASSIFIERS,
python_requires=PYTHON_REQUIRES,
install_requires=REQUIRES,
entry_points={
'console_scripts': [
'pydesigner = designer.pydesigner:main',
]
}
)