-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
34 lines (28 loc) · 1.08 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
import os
from setuptools import setup
from setuptools import find_packages
with open('README.md') as f:
readme = f.read()
with open('requirement.txt') as f:
requirements = f.readlines()
setup(
name='cryspnet',
version='0.1',
description='CRYSPNet: Crystal Structure Predictions via Neural Network. Liang et al. (2020).',
long_description=readme,
author='H Liang, V Stanev, A. G Kusne, and I Takeuchi',
packages=find_packages(),
install_requires=[
requirements,
],
include_package_data=True,
classifiers=['Programming Language :: Python :: 3.6',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Topic :: Other/Nonlisted Topic',
'Topic :: Scientific/Engineering'],
)