-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
40 lines (35 loc) · 1.17 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
38
39
40
import os
import re
from setuptools import setup, find_packages
rel_file = lambda *args: os.path.join(os.path.dirname(os.path.abspath(__file__)), *args)
def read_from(filename):
fp = open(filename)
try:
return fp.read()
finally:
fp.close()
def get_long_description():
return read_from(rel_file('README.md'))
def get_version():
data = read_from(rel_file('micromodels', '__init__.py'))
return re.search(r"__version__ = '([^']+)'", data).group(1)
setup(
name='micromodels',
description='Declarative dictionary-based model classes for Python',
long_description=get_long_description(),
version=get_version(),
packages=find_packages(),
url='https://github.com/j4mie/micromodels/',
author='Jamie Matthews',
author_email='[email protected]',
license='Public Domain',
install_requires=["PySO8601"],
classifiers = [
'Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)