This repository was archived by the owner on Nov 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (44 loc) · 1.33 KB
/
setup.py
File metadata and controls
50 lines (44 loc) · 1.33 KB
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
45
46
47
48
49
50
"""
Build and install the project.
Uses versioneer to manage version numbers using git tags.
"""
from setuptools import setup, find_packages
import versioneer
with open("README.rst") as f:
README = ''.join(f.readlines())
SETUP_ARGS = dict(
name='geometric',
fullname='geometric',
description='Geometric objects with physical properties',
long_description=README,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author='Leonardo Uieda',
author_email='leouieda@gmail.com',
license='BSD License',
url='https://github.com/fatiando/geometric',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: BSD License",
],
keywords='',
platforms='Any',
install_requires=[
'numpy',
'matplotlib'
],
scripts=[],
packages=find_packages(exclude=['doc', 'ci']),
package_data={
'geometric.tests': ['data/*', 'baseline/*'],
},
)
if __name__ == '__main__':
setup(**SETUP_ARGS)