-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 934 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
from setuptools import setup, find_packages
setup(
name="julia-venv",
version="0.0.0",
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"julia_venv": ["*.jl"]},
author="Takafumi Arakaki",
author_email="[email protected]",
# url="https://github.com/tkf/julia-venv",
license="MIT", # SPDX short identifier
# description="julia-venv - THIS DOES WHAT",
long_description=open("README.rst").read(),
# keywords="KEYWORD, KEYWORD, KEYWORD",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
# see: http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
install_requires=[
"julia",
],
entry_points={
"console_scripts": [
"julia-venv = julia_venv.shim:main",
"julia-venv-manage = julia_venv.manage:main",
],
},
zip_safe=False,
)