-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (21 loc) · 717 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (21 loc) · 717 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
29
from setuptools import setup, find_packages
setup(
name='leaflet',
version='0.0.4.dev1',
description='Dead simple I2P SAM library',
long_description=open('README.rst').read(),
url='https://github.com/MuxZeroNet/leaflet',
author='MuxZeroNet',
author_email='muxzeronet@users.noreply.github.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='I2P SAM socket',
packages=['leaflet', 'leaflet.examples'],
python_requires='>=3'
)