-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
36 lines (32 loc) · 992 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
with open("README.md") as readme:
long_description = readme.read()
with open("requirements.txt") as f:
install_requires = f.read().split()
setup(
name='pyseeder',
version='0.1',
description='Python reseed utilities for I2P',
long_description=long_description,
author='Darnet Villain',
author_email='[email protected]',
maintainer='R4SAS',
maintainer_email='[email protected]',
url='https://github.com/PurpleI2P/pyseeder/',
keywords='i2p reseed',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
packages=['pyseeder', 'pyseeder.transports'],
install_requires=install_requires,
entry_points={
'console_scripts': [
'pyseeder=pyseeder.cli:main',
],
}
)