forked from neocities/python-neocities
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 660 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(name='neocities',
version='0.1.0',
description='Python API for NeoCities.org',
classifiers=[
'Topic :: Internet'
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
],
license='LGPLv3',
package_dir={'neocities': 'neocities'},
install_requires=['requests',
'click',
'tabulate'],
packages=find_packages('.'),
entry_points="""\
[console_scripts]
neocities = neocities.neocli:main
""",
)