forked from chainreactionmfg/mutablerecords
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.04 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.04 KB
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
from setuptools import setup
MAJOR = 0
MINOR = 4
MICRO = 1
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
with open('README.md') as readme:
readme_lines = readme.readlines()
description = readme_lines[2].strip()
try:
import pypandoc
long_description = pypandoc.convert(
''.join(readme_lines[3:]), to='rst', format='md')
except ImportError:
long_description = ''.join(readme_lines)
setup(
name="mutablerecords",
packages=["mutablerecords"],
description=description,
long_description=long_description,
version=VERSION,
license='Apache 2.0',
author='Fahrzin Hemmati',
author_email='fahhem@chainreactionmfg.com',
url='https://github.com/chainreactionmfg/mutablerecords',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
]
)