|
1 | 1 | #!/usr/bin/env python |
2 | | -from setuptools import find_packages, setup |
| 2 | +from setuptools import setup |
3 | 3 |
|
4 | | -NAME = "jupyter_spaces" |
5 | | -VERSION = "0.2.0" |
6 | | -AUTHOR = "Davide Sarra" |
7 | | -URL = "https://github.com/davidesarra/jupyter_spaces" |
8 | | -DESCRIPTION = "Create parallel namespaces in Jupyter Notebooks" |
9 | | -LICENSE = "MIT" |
10 | | -CLASSIFIERS = [ |
11 | | - "Environment :: Console", |
12 | | - "Framework :: IPython", |
13 | | - "Framework :: Jupyter", |
14 | | - "Intended Audience :: Developers", |
15 | | - "Intended Audience :: Science/Research", |
16 | | - "License :: OSI Approved :: MIT License", |
17 | | - "Operating System :: OS Independent", |
18 | | - "Programming Language :: Python :: 3", |
19 | | - "Programming Language :: Python :: 3.5", |
20 | | - "Programming Language :: Python :: 3.6", |
21 | | - "Programming Language :: Python :: 3.7", |
22 | | - "Programming Language :: Python :: 3.8", |
23 | | -] |
24 | | -KEYWORDS = "jupyter ipython magic extension namespace" |
25 | | - |
26 | | -with open("README.md", "r") as f: |
27 | | - LONG_DESCRIPTION = f.read() |
28 | | - |
29 | | -REQUIREMENTS = [ |
30 | | - "ipython>=5.0.0", |
31 | | -] |
32 | | - |
33 | | -if __name__ == "__main__": |
34 | | - setup( |
35 | | - name=NAME, |
36 | | - version=VERSION, |
37 | | - author=AUTHOR, |
38 | | - url=URL, |
39 | | - license=LICENSE, |
40 | | - classifiers=CLASSIFIERS, |
41 | | - keywords=KEYWORDS, |
42 | | - description=DESCRIPTION, |
43 | | - long_description=LONG_DESCRIPTION, |
44 | | - long_description_content_type="text/markdown", |
45 | | - packages=find_packages(exclude=["tests"]), |
46 | | - install_requires=REQUIREMENTS, |
47 | | - python_requires="~=3.5", |
48 | | - ) |
| 4 | +setup() |
0 commit comments