setup.py 1.2 KB
Newer Older
M
Mars Liu 已提交
1 2 3 4 5 6
#!/usr/bin/env python

from setuptools import setup
from pathlib import Path

this_directory = Path(__file__).parent
M
Mars Liu 已提交
7
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
M
Mars Liu 已提交
8 9

setup(name="skill-tree-parser",
M
Mars Liu 已提交
10
      version="0.0.14",
M
Mars Liu 已提交
11 12 13 14 15 16 17
      description="CSDN Skill Tree Parser",
      long_description=long_description,
      long_description_content_type='text/markdown',
      author="Liu Xin",
      author_email="liuxin@csdn.net",
      url="https://gitcode.net/csdn/skill_tree_parser",
      license="MIT",
M
Mars Liu 已提交
18
      packages=["skill_tree", "skill_tree.exercises"],
M
Mars Liu 已提交
19
      package_dir={
M
Mars Liu 已提交
20 21
          "skill_tree": "src/skill_tree",
          "skill_tree.exercises": "src/skill_tree/exercises"
M
Mars Liu 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35
      },
      install_requires=[
          "pyparsec",
          "GitPython"
      ],
      classifiers=[
          "Topic :: Utilities",
          "Programming Language :: Python :: 3.5",
          "Programming Language :: Python :: 3.6",
          "Programming Language :: Python :: 3.7",
          "Programming Language :: Python :: 3.8",
          "Programming Language :: Python :: 3.9",
          "Programming Language :: Python :: 3 :: Only",
          "License :: OSI Approved :: MIT License"
M
Mars Liu 已提交
36
      ])