This repository was archived by the owner on Jul 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (39 loc) · 1.59 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
from pkg_resources import parse_requirements
from setuptools import setup
import codecs
import re
import os
here = os.path.abspath(os.path.dirname(__file__))
with open('requirements.txt') as requirements_file:
install_requires = [str(requirement) for requirement in parse_requirements(requirements_file)]
# loading version from setup.py
with codecs.open(os.path.join(here, 'dht/__init__.py'), encoding='utf-8') as init_file:
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", init_file.read(), re.M)
version_string = version_match.group(1)
setup(
name='dht',
version=version_string,
description='',
long_description='',
author='Learning@home & BitTensor authors',
author_email='[email protected]',
packages=['dht'],
license='MIT',
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
# What does your project relate to?
keywords='distributed computing, dht, distributed hash table, kademlia, machine learning, decentralized',
)