-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
executable file
·35 lines (30 loc) · 1.02 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
# -*- coding: utf-8 -*-
"""
Created on Fri Jun 1 11:18:28 2018
@author: rday
"""
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
f.close()
setup(name= 'chinook',
version = '1.1.3',
author = 'Ryan P. Day',
author_email = '[email protected]',
description = 'Tools for tight-binding and simulation of ARPES',
long_description=readme(),
url = 'https://github.com/rpday/chinook',
classifiers =[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Physics',
'Operating System :: OS Independent'
],
license= 'MIT',
packages= ['chinook'],
install_requires=['numpy','matplotlib','scipy'],
include_package_data=True,
package_data = {'chinook':['atomic_mass.txt','electron_configs.txt']}
)