forked from LEMS/pylems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (26 loc) · 1.04 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
# -*- coding: utf-8 -*-
from distutils.core import setup
long_description = open("README.md").read()
import lems
version = lems.__version__
setup(
name = "PyLEMS",
version = version,
packages = ['lems','lems.base','lems.model','lems.parser','lems.sim', 'lems.dlems'],
scripts=['pylems'],
author = "PyLEMS authors and contributors",
author_email = "gautham@lisphacker.org, p.gleeson@gmail.com",
description = "A Python library for working with the Low Entropy Model Specification language (LEMS)",
long_description = long_description,
license = "LGPL",
url="https://github.com/LEMS/pylems",
classifiers = [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Topic :: Scientific/Engineering']
)