-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·33 lines (28 loc) · 1002 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
#!/usr/bin/env python3
from setuptools import setup
setup(
name='pyverse',
version='0.3',
description='Stub description for pyverse.',
install_requires=[],
scripts=[],
packages=['pyverse'],
author='PyVerse contributors',
author_email='[email protected]',
maintainer="Félix Wolf",
maintainer_email="[email protected]",
url='https://github.com/FelixWolf/pyverse/',
download_url='https://cdn.softhyena.com/pip/pyverse.tar.gz',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Chat',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)