-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (55 loc) · 1.52 KB
/
setup.py
File metadata and controls
69 lines (55 loc) · 1.52 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# This file was automatically generated by Znake
try:
import fastentrypoints
except ImportError as e:
pass
from setuptools import setup, find_packages
try:
from pycred.version import (
__version__,
deb_package_name,
description,
long_description,
maintainer,
maintainer_email)
except ImportError:
__version__ = '0.0.0'
deb_package_name = 'unknown'
description = 'unknown'
long_description = 'unknown'
maintainer = 'unknown'
maintainer_email = 'unknown'
setup(
name=deb_package_name,
version=__version__,
description=description,
long_description=long_description,
maintainer=maintainer,
maintainer_email=maintainer_email,
license='© 2018 DevConSoft All rights reserved, or under MIT license',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: MIT',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='',
packages=find_packages(exclude=['*.test', '*.test.*', 'test.*', 'systest', 'systest.*', 'example', 'example.*', ]),
install_requires=[
'click',
'coloredlogs',
'cryptography',
'py',
'ruamel.yaml',
],
entry_points={
'console_scripts': [
'pycred = pycred.ui.__main__:main',
],
},
package_data={
'pycred': ['.config.yaml'],
},
)