-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (30 loc) · 1.16 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
37
import io
import re
from setuptools import setup
def read(fname):
with open(fname, 'r') as f:
return f.read()
def version():
with io.open("jcson/__init__.py", "rt", encoding="utf8") as f:
return re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
setup(name = 'jcson',
description = 'jcson - enhanced json for configuration',
long_description = read('README.md'),
long_description_content_type = 'text/markdown',
version = version(),
author = 'Alex Revetchi',
author_email = '[email protected]',
url = 'https://github.com/zakalibit/jcson',
packages =['jcson'],
license = 'License :: OSI Approved :: MIT License',
platforms = 'Linux',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python'
]
)