-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
36 lines (31 loc) · 1.1 KB
/
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
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='TiddlPy',
version='0.2',
description='API for interfacng with Tiddlywiki 5 files.',
# url='',
author='Neil Griffin',
author_email='ngriffin@gmail.com',
license='LGPL', # MIT, BSD
packages=['TiddlPy'],
# long_description=read('README.md'),
# keywords = ["photos"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD GNU General Public License (GPL)",
"Operating System :: OS Independent"],
zip_safe=True
)
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
# # Development Status :: 1 - Planning
# Development Status :: 2 - Pre-Alpha
# Development Status :: 3 - Alpha
# Development Status :: 4 - Beta
# Development Status :: 5 - Production/Stable
# Development Status :: 6 - Mature
# Development Status :: 7 - Inactive