-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (38 loc) · 1.39 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
39
from setuptools import setup, find_packages
setup(
name="site-slotting",
version="1.0.0",
packages=find_packages(),
install_requires=[
# List your project dependencies here
"numpy",
"pandas",
"ipykernel",
"openai",
],
tests_require=[
# List your test dependencies here
"pytest",
],
entry_points={
"console_scripts": [
"my_script = site-slotting.script:main",
],
},
author="Jacob Aldrich",
author_email="executive@anova.berkeley.edu",
description="This code is meant to place old and new members at Berkeley ANovas various sites.",
long_description="This code is meant to do two things: 1. Put old members into sites given a .csv file of their preferences. 2. Place new members into sites given a .csv file of their preferences, taking into account old members already being placed at a site a couple of weeks ago.",
long_description_content_type="text/markdown",
url="https://github.com/ANovaBerkeley/Site-Slotting",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
)