forked from ticdat/ticdat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1021 Bytes
/
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
import ticdat
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name = 'ticdat',
packages = find_packages(),
version = ticdat.__version__,
long_description = long_description,
long_description_content_type='text/markdown',
license = 'BSD 2-Clause',
author = 'Pete Cacioppi',
author_email= 'peter.cacioppi@gmail.com',
maintainer_email = '12samn@gmail.com',
url = 'https://github.com/ticdat/ticdat/',
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics"
],
platforms = 'any'
)