forked from nextleap-project/muacryptcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.34 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
import os
from setuptools import setup
def main():
with open(os.path.join("muacryptcc", "__init__.py")) as f:
for line in f:
if "__version__" in line.strip():
version = line.split("=", 1)[1].strip().strip('"')
break
with open("README.rst") as f:
long_desc = f.read()
setup(
name='muacryptcc',
description='',
long_description = long_desc,
version=version,
url='https://muacryptcc.readthedocs.io',
license='MIT license',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Topic :: Utilities',
'Intended Audience :: Developers',
'Programming Language :: Python'],
packages=['muacryptcc'],
entry_points={
"muacrypt": [
"muacryptcc=muacryptcc.plugin"
]
},
install_requires=["base58", "muacrypt"],
# install_requires=["claimchain", "muacrypt"],
zip_safe=False,
)
if __name__ == '__main__':
main()