forked from ATOMScience-org/AMPL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 814 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
27
28
29
30
31
32
33
34
35
#
# setup.py
#
from setuptools import setup, find_packages
import os
import glob
PACKAGE = 'atomsci'
here = os.path.abspath(os.path.dirname(__file__))
parent_dir = os.path.abspath(os.path.join(here, os.pardir))
script_files = glob.glob("scripts/*")
setup(
name='{}-ampl'.format(PACKAGE),
namespace_packages=[PACKAGE],
# install_requires=['distribute'],
include_package_data=True,
version=open('VERSION').read().strip(),
description='{} AMPL Python Package'.format(PACKAGE),
zip_safe=False,
data_files=[],
packages=find_packages(),
scripts=script_files,
install_requires=[
],
entry_points={
# 'console_scripts': [
# ("{pkg}_glo_command = "
# "{pkg}.glo:glo_command_main"
# .format(pkg=PACKAGE)),
# ],
},
)