-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (36 loc) · 1.13 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
from setuptools import setup, find_packages
import sys
packages = find_packages("src")
if sys.version_info[0] == 2:
packages = [p for p in packages if not p.startswith((
"ipyjulia_hacks.ipy",
"ipyjulia_hacks.py3",
))]
setup(
name="ipyjulia_hacks",
version="0.0.0",
packages=packages,
package_dir={"": "src"},
package_data={"ipyjulia_hacks": ["**/*.jl"]},
author="Takafumi Arakaki",
author_email="[email protected]",
# url="https://github.com/tkf/ipyjulia_hacks",
license="MIT", # SPDX short identifier
# description="ipyjulia_hacks - 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>=0.2",
"cached-property",
"traitlets",
'ipython>=7.0.0b1;python_version>="3.4"',
],
# entry_points={
# "console_scripts": ["PROGRAM_NAME = ipyjulia_hacks.cli:main"],
# },
)