-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 836 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (24 loc) · 836 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
#!/usr/bin/env python
from distutils.core import setup
setup(name="",
version="",
description="",
# ReStructuredText: http://docutils.sourceforge.net/rst.html
long_description="",
author="Ken Spencer",
author_email="ken@electrocode.net",
url="https://github.com/ElectroCode/Follow",
packages=["follow"]
classifiers=[
'Development Status :: 3 - Alpha',
#"Development Status :: 4 - Beta",
#"Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license="GPL 3",
platforms = ['Any']
)