-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (25 loc) · 845 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
setup(
name='julia_rings',
version='0.1.0',
description='Ring counting in amorphous structure implemented in Julia',
url='https://github.com/MorrowChem/julia_rings',
author='Joe Morrow',
author_email='[email protected]',
license='BSD 2-clause',
packages=['julia_rings'],
package_data={'': ['rings.jl']},
include_package_data=True,
install_requires=[
'ase',
'numpy',
'julia',
],
classifiers=[
'Development Status :: 2 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux :: OSX',
'Programming Language :: Python :: 3'
],
)