-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (21 loc) · 904 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
from setuptools import setup, find_packages
setup(name='cntt',
version='0.3',
description='CNTT, also C-entity, computes, displays and manipulates carbon nanotubes properties.',
author='Stefano Dal Forno',
author_email='tenobaldi@gmail.com',
url='https://github.com/t3n0/cntt',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
],
keywords=['swcnt', 'cnt', 'band', 'bandstructure', 'carbon', 'nanotubes'],
#packages=find_packages(),
packages = ['cntt'],
python_requires=">=3.5",
install_requires=[],
entry_points={ "console_scripts": [ "cntt=cntt.main:main" ],},
)