-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (23 loc) · 772 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (23 loc) · 772 Bytes
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
from setuptools import setup, find_packages
setup(name='traject',
version='1.0.0',
packages=find_packages(),
# install_requires=['matplotlib>=1.5'],
# entry_points={
# 'console_scripts': [
# 'traject = traject.ui:shell_main',
# ],
# },
# supposedly installs git controlled files
include_package_data=True,
# package_data={
# # Include any *.ini files in the packages
# '': ['*.ini'],
# },
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False,
# metadata (say if going to PyPI)
description='developer mode trajectory generation',
url='https://github.com/reconmaster/traject',
author='Andrew M. Davis')