-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.01 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
"""setup.py.
This setup.py file is included to support editable installations using pip's `-e`
option. The primary project configuration is specified in the pyproject.toml file. This
setup.py is only used for development installations and ensures compatibility with tools
and workflows that rely on setup.py.
"""
from setuptools import setup, find_packages
setup(
name="pirrtools",
version="0.2.13", # Update this version number before releasing a new version
description="Collection of tools I use in my projects",
author="Sean Smith",
author_email="[email protected]",
url="https://github.com/pirsquared/pirrtools",
packages=find_packages(),
install_requires=[
"pandas",
"numpy",
"feather-format",
"ipython",
"Pygments",
],
extras_require={
"dev": [
"pytest",
"pytest-cov",
"build",
"twine",
"black",
"pre-commit",
"pylint",
],
},
)