-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (39 loc) · 1.43 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
36
37
38
39
40
41
42
43
44
# -*- coding: utf-8 -*-
from setuptools import setup
with open('LICENSE') as f:
license_file = f.readlines()
VERSION = '0.0.8.6'
DESCRIPTION = 'A package for Covalent Organic Frameworks sturcture assembly.'
setup(
name='pyCOFBuilder',
version=VERSION,
description=DESCRIPTION,
long_description=open('README.md').read(),
author='Felipe Lopes Oliveira',
author_email='[email protected]',
url='https://github.com/lipelopesoliveira/pyCOFBuilder',
license=license_file,
package_dir={'': 'src'},
package_data={'pycofbuilder': ['pycofbuilder/data/*']},
install_requires=['simplejson',
'numpy>=1.6.3',
'scipy>=1.2',
'pymatgen>=2022.0.8',
'jupyter',
'jupyterlab',
'pandas',
'tqdm',
'gemmi',
'ase',],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)