forked from afonari/emc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 771 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
# -*- coding: utf-8 -*-
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name = "emc",
version = '2.0-beta1',
description = "Effective mass calculator",
maintainer = "Alexandr Fonari",
maintainer_email = "firstname.lastname@gatech.edu",
url = "https://github.com/alexandr-fonari/emc",
download_url = "https://github.com/alexandr-fonari/emc",
py_modules = ['emc'],
platforms = ["any"],
license = 'MIT',
long_description = "Effective mass calculator",
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics'
],
)