-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 774 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 774 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
from setuptools import setup, find_packages
setup(
long_description=open("README.md", "r").read(),
name="dhtc",
version="0.42",
description="dht crawler",
author="Pascal Eberlein",
author_email="pascal@eberlein.io",
url="https://github.com/nbdy/dhtc",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords="dht crawler",
packages=find_packages(),
entry_points={
'console_scripts': [
'dhtc = dhtc.__main__:main'
]
},
package_data={
"dhtc": ["templates/*.html"]
}
)