add additional setup information
This commit is contained in:
35
setup.py
35
setup.py
@@ -1,21 +1,40 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
from os import path
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
with open(path.join(path.abspath(path.dirname(__file__)), 'README'), encoding='utf-8') as f:
|
||||
long_description = f.read()
|
||||
|
||||
setup(
|
||||
name="materials",
|
||||
version="2019.02.08",
|
||||
#description="",
|
||||
#long_description="",
|
||||
version="2019.2.9",
|
||||
description="metarial database",
|
||||
long_description=long_description,
|
||||
author="Daniel Weschke",
|
||||
author_email="daniel.weschke@directbox.de",
|
||||
package_dir={'': 'src'},
|
||||
packages=find_packages("src"),
|
||||
py_scripts = [ # List of all single modules in src
|
||||
py_scripts = [
|
||||
'materials.py',
|
||||
],
|
||||
#install_requires=[
|
||||
# '',
|
||||
#],
|
||||
entry_points={
|
||||
'console_scripts': ['materials=materials:main'],
|
||||
}
|
||||
},
|
||||
keywords = 'materials mechanics',
|
||||
license="MIT",
|
||||
classifiers=[
|
||||
'Environment :: Console',
|
||||
'Intended Audience :: Education',
|
||||
'Intended Audience :: End Users/Desktop',
|
||||
'Intended Audience :: Developers',
|
||||
'Intended Audience :: Science/Research',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Natural Language :: English',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Topic :: Scientific/Engineering',
|
||||
'Topic :: Scientific/Engineering :: Chemistry',
|
||||
'Topic :: Scientific/Engineering :: Physics'
|
||||
]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user