-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (39 loc) · 1.41 KB
/
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
36
37
38
39
40
41
42
43
44
45
from setuptools import setup
# https://setuptools.readthedocs.io/en/latest/setuptools.html#developer-s-guide
setup(
name="Avicena",
version="0.1",
packages=['avicena'],
#scripts=["say_hello.py"],
#scripts=["say_hello.py"],
entry_points={
"console_scripts": [
"avi-import = avicena.prepare_database:avicena_import_db",
"avi-cli = avicena.app.run_cli:avicena_run_cli"
]
},
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
#install_requires=["docutils>=0.3"],
#package_data={
# # If any package contains *.txt or *.rst files, include them:
# "": ["*.txt", "*.rst"],
# # And include any *.msg files found in the "hello" package, too:
# "hello": ["*.msg"],
#},
# metadata to display on PyPI
#author="Me",
#author_email="[email protected]",
description="A project to solve the Vehicle Routing Problem (VRP)",
keywords="vrp ml ai optimization",
#url="http://example.com/HelloWorld/", # project home page, if any
#project_urls={
# "Bug Tracker": "https://bugs.example.com/HelloWorld/",
# "Documentation": "https://docs.example.com/HelloWorld/",
# "Source Code": "https://code.example.com/HelloWorld/",
#},
classifiers=[
"License :: MIT"
]
# could also include long_description, download_url, etc.
)