-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 871 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
from setuptools import setup, find_packages
VERSION = '0.0.1'
DESCRIPTION = 'AutoPoly'
LONG_DESCRIPTION = 'Build your LAMMPS data file'
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="AutoPoly",
version=VERSION,
author="Zhenghao Wu",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
package_data={'AutoPoly': ['extern/*']},
include_package_data=True,
packages=find_packages(),
install_requires=['numpy >= 1.8.0',
'rdkit >= 2022.09.1',
'pathlib >= 1.0.1'],
# add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
keywords=['python', 'molecular dynamics'],
)